7d5bc03c97c00daa44f223584d412a5617902151,findbugs/src/java/edu/umd/cs/findbugs/workflow/RejarClassesForAnalysis.java,RejarClassesForAnalysis,execute,#,304
Before Change
List<String> fileList;
if (commandLine.inputFileList != null)
fileList = readFrom(new FileReader(commandLine.inputFileList));
else if (argCount == args.length)
fileList = readFromStandardInput();
else
After Change
TreeSet<String> fileList = new TreeSet<String>();
if (commandLine.inputFileList != null)
readFrom(fileList, new FileReader(commandLine.inputFileList));
else if (argCount == args.length)
readFromStandardInput(fileList);
else